home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / tee.lqr / tee.lbr / tee.doc next >
Text File  |  2011-01-30  |  1KB  |  36 lines

  1.  
  2. Plumber's tee for pipes.
  3.  
  4. Don Harbaugh                                        6/7/84
  5.  
  6. Tee is a program that gets characters from standard input, puts
  7. them to standard output, and also puts them to the screen.
  8.  
  9. This may not sound like a useful program, but imagine this:
  10. You are going to run a program called CRUNCH that takes 6 hours 
  11. to complete, and that puts more than a screenful of data to 
  12. standard output.  You don't want to sit there for hours watching
  13. the screen, and you don't have a printer, so you redirect the 
  14. standard output to a file, like this:
  15.  
  16.     A>CRUNCH >LISTOUT
  17.  
  18. You start the program and return 6 hours later to find that 
  19. during the first 5 minutes of execution it suffered a fatal 
  20. error that you never saw because the standard output was 
  21. redirected to a file.  You have wasted 6 hours.
  22.  
  23. Tee allows you to put standard output into a file, but also see
  24. it on the screen.  You use it like this:
  25.  
  26.     A>CRUNCH | TEE >LISTOUT
  27.  
  28. DOS pipes the standard output of CRUNCH to the standard input of 
  29. Tee.  Tee puts the characters to standard output, which you have 
  30. redirected to a file.  Tee also displays the characters on the 
  31. screen, so that you can check things from time to time.
  32.  
  33.  
  34. 
  35.  
  36. ed to a file.  Tee also displays